home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / Bonus / DBaldwin / htmllite.exe / demo_src / HTMLDEMO.DPR < prev    next >
Encoding:
Text File  |  2001-06-24  |  659 b   |  30 lines

  1. {$ifdef Windows}
  2. {$M 24000, 8192}   {Default stack size may be too small}
  3. {$endif}
  4.  
  5. program Htmldemo;
  6. {A program to demonstrate the ThtmlLite component}
  7.  
  8. uses
  9.   Forms,
  10.   demounit in 'demounit.pas' {Form1},
  11.   LiteAbt in 'LiteAbt.pas' {AboutBox},
  12.   ImgForm in 'ImgForm.pas' {ImageForm},
  13.   FontDlgL in 'FontDlgL.pas' {FontForm},
  14.   Submit in 'Submit.pas' {SubmitForm};
  15.  
  16. {$ifdef Windows}
  17. {$R htmldm16.res}  {Delphi 1}
  18. {$else}
  19. {$R htmldemo32.RES}
  20. {$endif}
  21.  
  22. begin
  23.   {$ifndef Windows}
  24.   Application.Initialize;
  25.   {$endif}
  26.   Application.CreateForm(TForm1, Form1);
  27.   Application.CreateForm(TSubmitForm, SubmitForm);
  28.   Application.Run;
  29. end.
  30.